home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / SymbolicIsItInThere.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  447 b   |  19 lines  |  [TEXT/KAHL]

  1. /* SymbolicIsItInThere.h */
  2.  
  3. #ifndef Included_SymbolicIsItInThere_h
  4. #define Included_SymbolicIsItInThere_h
  5.  
  6. /* SymbolicIsItInThere module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Memory */
  12. /* DataMunging */
  13.  
  14. /* case insensitive thing to see if a string is in another string.  returns the position */
  15. /* if it was found or -1 if not found. */
  16. MyBoolean                        IsItInThere(char* Block, char* NullTermThing);
  17.  
  18. #endif
  19.